home *** CD-ROM | disk | FTP | other *** search
- property pSpr
-
- on beginSprite me
- pSpr = sprite(me.spriteNum)
- end
-
- on mouseEnter
- actions = currentActions()
- pSpr.member.boxType = #scroll
- pSpr.height = 75
- text = EMPTY
- repeat with X = 1 to count(actions)
- text = text & getPropAt(actions, X) & RETURN
- end repeat
- delete char -30000 of text
- pSpr.member.text = text
- end
-
- on mouseLeave
- pSpr.height = 25
- end
-
- on mouseDown me
- global gCurrentIndex
- actions = currentActions()
- boxType = pSpr.member.boxType
- updateStage()
- thisLine = the mouseLine
- repeat while the stillDown
- updateStage()
- end repeat
- if (thisLine > 0) and (thisLine <= count(actions)) then
- hilite line thisLine of field the member of pSpr
- gCurrentIndex = thisLine
- updateDisplay(1)
- end if
- end
-